Setup
Folder Structure
├── apps/
│ ├── admin/ # Admin UI React App
│ ├── agent/ # Fulfillment Agent Application (React Native)
│ └── server/ # BPP Backend Server
│ └── webhook/ # BPP Webhook
├── packages/
│ ├── bpp-sdk/ # BPP SDK Library
│ └── shared-utils/ # Shared Utility Library
└── package.json
1. Fork it 🍴
2. Clone it 👥
git clone https://github.com/Sarfraz-droid/BPP-Boilerplate-SDK.git
3. Set it up ⬆️
- First, run
yarn
ornpm install
on root to install all dependencies - Go over to
packages/bpp-sdk
and runnpm run build
4. Run it 🏁
- To run the admin app, go over to
apps/admin
and runyarn dev
- To run the server app, go over to
apps/server
and runyarn dev
- To run the agent app, go over to
apps/agent
and runyarn start